home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Grafika i zdjecia / Edytory grafiki rastrowej i wektorowej / Inscape 0.44.1 / Inkscape-0.44.1-1.win32.exe / share / extensions / aisvg.xslt < prev    next >
Extensible Markup Language  |  2006-09-06  |  853b  |  25 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet  xml:space="default" version="2.0" 
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns="http://www.w3.org/2000/svg"
  5. xmlns:svg="http://www.w3.org/2000/svg"
  6. xmlns:xlink="http://www.w3.org/1999/xlink"
  7. xmlns:x="http://ns.adobe.com/Extensibility/1.0/" 
  8. xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" 
  9. xmlns:graph="http://ns.adobe.com/Graphs/1.0/" 
  10. xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" >
  11. <xsl:output indent="yes"/>
  12.     <xsl:template match="/">
  13.             <xsl:apply-templates />
  14.     </xsl:template>
  15.     <xsl:template match="*">
  16.         <xsl:copy>
  17.         <xsl:apply-templates select="@*|node()|text"/>
  18.         </xsl:copy>
  19.     </xsl:template>
  20.     <xsl:template match="@*">
  21.         <xsl:copy/>
  22.     </xsl:template>
  23.     <xsl:template match="i:*|@i:*|x:*|@x:*|graph:*|@graph:*|a:*|@a:*">
  24.     </xsl:template>
  25. </xsl:stylesheet>